home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / main.dir / 00172_Script_hand 2 < prev    next >
Text File  |  1998-08-26  |  373b  |  30 lines

  1. on mouseEnter me
  2.   cursor 280 
  3. end
  4.  
  5. on mouseleave me
  6.   cursor -1
  7. end
  8.  
  9. on mousedown me
  10.   
  11.   if not rollover(50) then
  12.     if not rollover(51) then
  13.       nothing
  14.     end if
  15.   end if
  16.   
  17.   if rollover(50) then
  18.     puppetsound(2) "button"
  19.     cursor -1
  20.   end if
  21.   
  22.   if rollover(51) then
  23.     puppetsound(2) "button"
  24.     cursor -1
  25.   end if  
  26.   
  27. end
  28.  
  29.  
  30.